/** Indicate that progress has complete. */
 public void progressComplete() {
   this.nCount = 0;
   oProgressDialog.setVisible(false);
   oProgressDialog.dispose();
 }
 /**
  * Indicate that progress has been updated.
  *
  * @param int nCount, the current position of the progress in relation to the inital count
  * @param String sMessage, the message to display to the user
  */
 public void progressUpdate(int nIncrement, String sMessage) {
   nCount += nIncrement;
   oProgressBar.setValue(nCount);
   oProgressDialog.setMessage(sMessage);
   oProgressDialog.setStatus(nCount);
 }