1 package org.odmg; 2 3 4 import org.apache.ojb.odmg.oql.EnhancedOQLQuery; 5 6 7 13 14 public interface Implementation 15 { 16 21 public Transaction newTransaction(); 22 23 28 public Transaction currentTransaction(); 29 30 35 public Database newDatabase(); 36 37 42 public EnhancedOQLQuery newOQLQuery(); 43 44 49 public DList newDList(); 50 51 56 public DBag newDBag(); 57 58 63 public DSet newDSet(); 64 65 70 public DArray newDArray(); 71 72 77 public DMap newDMap(); 78 79 84 public String getObjectId(Object obj); 85 86 91 public Database getDatabase(Object obj); 92 } 93 | Popular Tags |