"Steven E. Harris" <[EMAIL PROTECTED]> writes: > Is there some way short of writing another such class to get from a > Dictionary to a Map?
Oh, maybe copy-construct a new java.util.Hashtable, providing the Map to the constructor, and taking advantage of Hashtable implementing the Dictionary interface. Unfortunately, we'd have to copy all the mappings, rather than just providing an adapted view of them. -- Steven E. Harris