1 64 65 package com.jcorporate.expresso.core.dbobj; 66 67 import com.jcorporate.expresso.core.db.DBConnection; 68 import com.jcorporate.expresso.core.db.DBException; 69 70 71 86 public class MultiDBObjectTransaction extends MultiDBObject { 87 88 91 public MultiDBObjectTransaction() 92 throws DBException { 93 super(); 94 95 } 96 97 103 public synchronized String getDBName() { 104 return super.getDBName(); 105 } 106 107 108 119 public synchronized void setDBName(String newOther) 120 throws DBException { 121 super.setDBName(newOther); 122 } 123 124 125 128 public DBConnection getConnection() { 129 return localConnection; 130 } 131 132 135 public void setConnection(DBConnection connection) { 136 localConnection = connection; 137 } 138 139 } 140 141 | Popular Tags |