001    package org.odmg;
002    
003    
004    
005    /**
006    
007     * The ODMG Map collection interface.
008    
009     * All of the operations defined by the JavaSoft <code>Map</code>
010    
011     * interface are supported by an ODMG implementation of <code>DMap</code>,
012    
013     * the exception <code>UnsupportedOperationException</code> is not thrown when a
014    
015     * call is made to any of the <code>Map</code> methods.
016    
017     * @author      David Jordan (as Java Editor of the Object Data Management Group)
018    
019     * @version ODMG 3.0
020    
021     */
022    
023    // * @see com.sun.java.util.collections.UnsupportedOperationException
024    
025    
026    
027    public interface DMap extends java.util.Map
028    
029    {
030    
031    
032    
033    }
034