01: package org.odmg;
02:
03: /**
04: * The ODMG Map collection interface.
05: * All of the operations defined by the JavaSoft <code>Map</code>
06: * interface are supported by an ODMG implementation of <code>DMap</code>,
07: * the exception <code>UnsupportedOperationException</code> is not thrown when a
08: * call is made to any of the <code>Map</code> methods.
09: * @author David Jordan (as Java Editor of the Object Data Management Group)
10: * @version ODMG 3.0
11: */
12: // * @see com.sun.java.util.collections.UnsupportedOperationException
13: public interface DMap extends java.util.Map {
14:
15: }
|