Пример #1
0
 /**
  * shows the database on the user interface, if the user interface exists and no user response is
  * specied and there is no 'blanketAccept' option.
  */
 public void showDatabase() {
   if (userInterface != null) // the user interface exists
   {
     if (!genProps.contains("userResponse")) // if we have no preknown user response
     {
       if (genProps.getProperty("blanketAccept", null) == null) // if we have no blanket accept
       {
         userInterface.showDatabase(pdb); // we must be running interactive
       }
     }
   }
 }