made the following protected:
authorfh <fh>
Thu, 4 Oct 2001 11:51:10 +0000 (11:51 +0000)
committerfh <fh>
Thu, 4 Oct 2001 11:51:10 +0000 (11:51 +0000)
invalidatePopupCache ()
throwSQLException (SQLException sqe, String wo)
theAdaptor

complaints are accepted :)

source/mir/storage/Database.java

index dbfe137..973850a 100755 (executable)
@@ -45,7 +45,7 @@ public class Database implements StorageObject {
   private       String                database_driver;
   private       String                database_url;
   private int                         defaultLimit;
-  private DatabaseAdaptor             theAdaptor;
+  protected DatabaseAdaptor             theAdaptor;
   protected Logfile                   theLog;
   protected Connection                con;
 
@@ -857,7 +857,7 @@ public class Database implements StorageObject {
 
   /* invalidates the popupCache
    */
-  private void invalidatePopupCache () {
+  protected void invalidatePopupCache () {
 
     /** @todo  invalidates toooo much */
     popupCache = null;
@@ -1057,7 +1057,7 @@ public class Database implements StorageObject {
    * @param wo Funktonsname, in der die SQLException geworfen wurde
    * @exception StorageObjectException
    */
-  void throwSQLException (SQLException sqe, String wo) throws StorageObjectException {
+  protected void throwSQLException (SQLException sqe, String wo) throws StorageObjectException {
     String state = "";
     String message = "";
     int vendor = 0;