Package com.taco.util

Provides utility classes for a variety of purposes.

See:
          Description

Interface Summary
IDelayedResult A result that may be computed at a later time.
IInterpolatingResourceBundleToObjectConverter An interface that specifies conversion of a set of keys in a resource bundle to an object.
IIntMapper A mapping from integers to integers.
IObjectFilter An interface for filtering out objects that match a certain criteria.
IObjectMapper An interface for mapping objects to other objects.
IResourceBundleFactory An interface that specifies the creation and invalidation of resource bundles.
 

Class Summary
AbstractResourceBundleFactory An abstract implementation of IResourceBundleFactory that has provides implementations of methods that simply call other methods with default arguments.
AcceptAllObjectFilter An implementation of IObjectFilter that accepts all objects.
AccessibleResourceBundle A subclass of ResourcBundle whose attributes can be manipulated by instances of IResourceBundleFactory.
AccessibleResourceBundleAdapter Adapts an ordinary resource bundle to be an AccessibleResourceBundle.
ArrayIntMapper An implementation of IIntMapper that uses an array to do the mapping.
BooleanMapper An implementation of IObjectMapper that returns a Boolean which represents an object.
BooleanToIntegerMapper An implementation of IObjectMapper that converts a true Boolean to 1, and everything else to 0.
CachedDelayedResult An implementation of IDelayedResult which caches the computed result.
CachedKeysResourceBundle A subclass of AccessibleResourceBundle that provides a useful implementation of getKeys().
ChainedResourceBundleFactory A factory for resource bundles that allows resource bundles to be chained.
ChainedResourceBundleFactory.ChainedResourceBundle A resource bundle that maps method calls to a contained resource bundle, except that its parent chain may continue after the contained resource bundle's chain ends.
CollectionToMatrixMapper A converter from collections of collections to Object matrices.
ConstantIntMapper An implementation of IIntMapper that maps all integers to a single constant.
DefaultObjectMapper An implementation of IObjectMapper that maps an object to itself.
DelayedResultForcer An object mapper which forces the evaluation of delayed results.
EnumerationToIteratorAdapter An adapter from an Enumeration to an Iterator.
FilteredIterator An iterator over a filtered subset of elements.
InvertMapper An implementation of IObjectMapper that returns a Boolean which represents the "inverted" value to map.
MultiLineProperties A subclass of java.util.Properties that allows a slightly more user-friendly syntax.
MultiLinePropertyResourceBundle A resource bundle that reads its key/value pairs from a .properties file, which is interpreted by an instance of MultiLineProperties.
ObjectArrayMapper An object mapper that takes a collection or a object array and converts it to an object array.
ResourceBundleFactory A concrete implementation of IResourceBundleFactory.
UIManagerResourceBundle A resource bundle that is backed by the UIManager.
 

Package com.taco.util Description

Provides utility classes for a variety of purposes.