コード例 #1
0
 public void stateChanged(ChangeEvent e) {
   IBrowserComponent component = getActivePage();
   if (component != null && myInactivatedPages.remove(component)) {
     try {
       component.open(myDBFile);
     } catch (Throwable th) {
       open(null);
       showErrorDialog(th);
     }
   }
 }