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