Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/odmg/DMap.java


1   package org.odmg;
2   
3   /**
4    * The ODMG Map collection interface.
5    * All of the operations defined by the JavaSoft <code>Map</code>
6    * interface are supported by an ODMG implementation of <code>DMap</code>,
7    * the exception <code>UnsupportedOperationException</code> is not thrown when a
8    * call is made to any of the <code>Map</code> methods.
9    * @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  
14  public interface DMap extends java.util.Map
15  {
16  
17  }