/** @return */
 String getDialogTitle() {
   String title = DB_Results.getDbTitle();
   if (title == null) {
     // DB is not connected
     int version;
     if (this.mVersionRadioButton.getSelection()) {
       version = ECLIPSE_MAINTENANCE_VERSION;
     } else {
       version = ECLIPSE_DEVELOPMENT_VERSION;
     }
     title = "Eclipse " + version + " - DB not connected";
   }
   return title;
 }