示例#1
0
 /**
  * Called on the EDT if doInBackground completes without error and this Task isn't cancelled. We
  * update the GUI as well as the file and modified properties here.
  *
  * @param fileContents
  */
 @Override
 protected void succeeded(final T fileContents) {
   view.setFile(getFile());
   ImageFlowView.getProgressBar().setIndeterminate(false);
   ImageFlowView.getProgressBar().setVisible(false);
   view.setModified(false);
 }