This interface is designed to provide a simplified subset of the
methods provided by the java.text.DateFormat class.
This interface is necessary because of the difficulty in writing
thread safe classes that inherit from java.text.DateFormat .
This difficulty leads us to approach the problem using composition
rather than inheritance. In general classes that implement this
interface will delegate these calls to an internal DateFormat object.
|