KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > odmg > DMap


1 package org.odmg;
2
3
4
5 /**
6
7  * The ODMG Map collection interface.
8
9  * All of the operations defined by the JavaSoft <code>Map</code>
10
11  * interface are supported by an ODMG implementation of <code>DMap</code>,
12
13  * the exception <code>UnsupportedOperationException</code> is not thrown when a
14
15  * call is made to any of the <code>Map</code> methods.
16
17  * @author David Jordan (as Java Editor of the Object Data Management Group)
18
19  * @version ODMG 3.0
20
21  */

22
23 // * @see com.sun.java.util.collections.UnsupportedOperationException
24

25
26
27 public interface DMap extends java.util.Map JavaDoc
28
29 {
30
31
32
33 }
34
35
Popular Tags