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

Quick Search    Search Deep

Source code: org/odbms/ObjectContainer.java


1   /*
2    * Original source: http://www.odbms.org
3    *
4    */
5   
6   
7   package  org.odbms;
8   
9   
10  /**
11   * database engine interface.
12   * <br><br>The <code>ObjectContainer</code> interface provides all functions
13   * to store, retrieve and delete objects and to change object state.
14   */
15  public interface ObjectContainer {
16  
17      /**
18       * factory method to create a new <a href="Query.html">
19       * <code>Query</code></a> object.
20       * @return a new Query object
21       */
22      public Query query ();
23  
24  }