Exemple #1
0
 /** Reload the current xml and update the display. */
 public void doUpdateInner() {
   String selected = urlBox.getSelectedItem().toString().trim();
   // Only save off the list on a successful load
   if (selected.length() == 0) {
     if (handlers.size() > 0) {
       goBack();
     } else {
       makeBlankTree();
     }
     return;
   }
   if (makeUiFromPath(selected)) {
     urlListHandler.saveState(urlBox);
   }
 }