Uses of Package
com.taco.text

Packages that use com.taco.text
com.taco.swinger.text2gui Provides converters from text to Swing components, layouts, and models. 
com.taco.swinger.text2gui.border Provides converters fromt text to Swing borders. 
com.taco.text Provides converters to and from text, and other text processing and formatting capabilities. 
com.taco.util Provides utility classes for a variety of purposes. 
 

Classes in com.taco.text used by com.taco.swinger.text2gui
AbstractInterpolatingStringToObjectConverter
          An abstract implementation of IInterpolatingStringToObjectConverter which provides a way for interpolating string to object converters to act like ordinary string to object converters by specifying a resource bundle and an argument map to use in the constructor.
AbstractStringToObjectConverter
          An abstract base class for implementations of IStringToObjectConverter which also implements IObjectMapper.
AtomConverter
          An interpolating string and resource bundle converter of atomic data.
BracedPropertyCompositeConverter
          A subclass of CompositeConverter that matches C-style punctuation in property values.
ChainedInterpolatingConverter
          A converter based on another converter, which has its value converted by an implementation of IObjectMapper.
CollectionConverter
          An interpolating converter from resource bundles and strings to collections.
CompositeConverter
          An interpolating converter that creates objects that have many properties.
CompositeConverter.AbstractMapConsistencyListener
          A useful base class for observable map updaters.
CompositeConverter.IMapConsistencyListener
          A marker interface for listeners that update the argument map when a composite's property changes.
CompositeConverter.ISetPropertyAction
          An interface that specifies the action taken in order to set a property value of a composite object.
DispatchingConverter
          A string and resource bundle to object converter that uses the first word of a string or the key appended with ".dispatchType" in the resource bundle to dispatch to another converter.
ICommonRegexConstants
          Common regex strings and patterns used for string parsing.
IInterpolatingConverter
          An interface specifies a converter from both strings and resource bundles.
IInterpolatingStringToObjectConverter
          An interface that specifies conversion from a string, which may make references to data in a resource bundle or an argument map, to objects.
ImmutableCompositeConverter
          An abstract subclass of BracedPropertyCompositeConverter which creates an object whose properties cannot be changed.
InterpolatingConverter
          An implementation of IInterpolatingConverter which has commonly used behavior.
IStringToObjectConverter
          An interface for converting strings to objects.
KeyLookupRecord
          A data structure used to maintain mappings between argument key names and names of properties which depend on the looking up the key name in an argument map.
MappedStringToObjectConverter
          A simple implementation of IStringToObjectConverter that looks up strings to be converted in a map, and returns the mapped value.
 

Classes in com.taco.text used by com.taco.swinger.text2gui.border
AbstractInterpolatingStringToObjectConverter
          An abstract implementation of IInterpolatingStringToObjectConverter which provides a way for interpolating string to object converters to act like ordinary string to object converters by specifying a resource bundle and an argument map to use in the constructor.
BracedPropertyCompositeConverter
          A subclass of CompositeConverter that matches C-style punctuation in property values.
CompositeConverter
          An interpolating converter that creates objects that have many properties.
DispatchingConverter
          A string and resource bundle to object converter that uses the first word of a string or the key appended with ".dispatchType" in the resource bundle to dispatch to another converter.
ICommonRegexConstants
          Common regex strings and patterns used for string parsing.
IInterpolatingConverter
          An interface specifies a converter from both strings and resource bundles.
IInterpolatingStringToObjectConverter
          An interface that specifies conversion from a string, which may make references to data in a resource bundle or an argument map, to objects.
ImmutableCompositeConverter
          An abstract subclass of BracedPropertyCompositeConverter which creates an object whose properties cannot be changed.
InterpolatingConverter
          An implementation of IInterpolatingConverter which has commonly used behavior.
IStringToObjectConverter
          An interface for converting strings to objects.
 

Classes in com.taco.text used by com.taco.text
AbstractInterpolatingStringToObjectConverter
          An abstract implementation of IInterpolatingStringToObjectConverter which provides a way for interpolating string to object converters to act like ordinary string to object converters by specifying a resource bundle and an argument map to use in the constructor.
AbstractObjectToStringConverter
          An abstract implementation of IStringToObjectConverter that also implements IObjectMapper by calling the toString() method.
AbstractStringToObjectConverter
          An abstract base class for implementations of IStringToObjectConverter which also implements IObjectMapper.
AtomConverter
          An interpolating string and resource bundle converter of atomic data.
BracedPropertyCompositeConverter
          A subclass of CompositeConverter that matches C-style punctuation in property values.
ClassToStringConverter
          An implementation of IObjectToStringConverter that returns the class name of the object to be converted.
CollectionConverter
          An interpolating converter from resource bundles and strings to collections.
CollectionToStringConverter
          A converter from collections to strings that uses StringListUtilities.createCollectionString() to do the conversion.
CompositeConverter
          An interpolating converter that creates objects that have many properties.
CompositeConverter.AbstractCompositeUpdater
          A useful base class for a listener that updates a composite when the value corresponding to an argument map key changes.
CompositeConverter.AbstractMapConsistencyListener
          A useful base class for observable map updaters.
CompositeConverter.ICompositeUpdater
          A marker interface for a listener that updates a composite when the value corresponding to an argument map key changes.
CompositeConverter.IMapConsistencyListener
          A marker interface for listeners that update the argument map when a composite's property changes.
CompositeConverter.ISetPropertyAction
          An interface that specifies the action taken in order to set a property value of a composite object.
CompositeConverter.ReflectionSetPropertyAction
          An implementation of ISetPropertyAction which uses reflection to set the property.
DefaultObjectToStringConverter
          A class that implements IObjectToStringConverter just by calling the toString() method of the object to convert.
DefaultStringToObjectConverter
          An implementation of IStringToObjectConverter that simply maps a String to the same value.
ICommonRegexConstants
          Common regex strings and patterns used for string parsing.
IInterpolatingConverter
          An interface specifies a converter from both strings and resource bundles.
IInterpolatingStringToObjectConverter
          An interface that specifies conversion from a string, which may make references to data in a resource bundle or an argument map, to objects.
InstanceConverter
          A converter to instances via class names or scripts.
IntArrayToStringConverter
          A converter from int arrays to comma-separated strings.
InterpolatedValueMatchResult
          A data structure used to hold the information about an interpolated value found in a CharSequence.
InterpolatingConverter
          An implementation of IInterpolatingConverter which has commonly used behavior.
IObjectToStringConverter
          An interface for converting objects to strings.
IStringToObjectConverter
          An interface for converting strings to objects.
KeyLookupRecord
          A data structure used to maintain mappings between argument key names and names of properties which depend on the looking up the key name in an argument map.
MapConverter
          An interpolating converter to maps.
MatchResult
          A data structure that contains the result of matching string operations.
MessageFormatConverter
          A converter to instances of MessageFormat.
PatternToStringConverter
          An implemenation of IObjectToStringConverter the converts a Pattern into a string which is the double quote-escaped version of its regex string.
QuotedStringConverter
          A converter from both resource bundles and strings to strings.
RangeConverter
          A converter to a 2-element int array representing a range.
StringConverter
          A converter from both resource bundles and strings to strings.
StringToBeanShellInstanceConverter
          A converter from a string that specifies an instance of an object to an object.
StringToBooleanConverter
          A converter from strings to instances of Boolean.
StringToCharacterConverter
          A string to object converter that converts strings into instances of Character.
StringToClassConverter
          An implementation of IStringToObjectConverter that converts a string, interpreted as a fully qualified class name, into a class object.
StringToDoubleConverter
          A string to object converter that converts number strings into instances of Double.
StringToFloatConverter
          A string to object converter that converts number strings into instances of Float.
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.
StringToIntegerConverter
          A string to object converter that converts number strings into instances of Integer.
StringToLocaleConverter
          A converter from strings to instances of Locale.
StringToLongConverter
          A string to object converter that converts number strings into instances of Long.
StringToPatternConverter
          An implementation of IStringToObjectConverter that converts a double-quoted regex string into an instance of Pattern.
 

Classes in com.taco.text used by com.taco.util
KeyLookupRecord
          A data structure used to maintain mappings between argument key names and names of properties which depend on the looking up the key name in an argument map.