Package net.sourceforge.squirrel_sql.client.update.gui.installer.event

Examples of net.sourceforge.squirrel_sql.client.update.gui.installer.event.InstallStatusEvent


  }

  private void sendFileRemoveComplete(String artifactName)
  {
    logInfo("Remove complete for file: " + artifactName);
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.FILE_REMOVE_COMPLETE);
    evt.setArtifactName(artifactName);
    sendEvent(evt);
  }
View Full Code Here


  }

  private void sendRemoveComplete()
  {
    logInfo("Remove complete");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.REMOVE_COMPLETE);
    sendEvent(evt);
  }
View Full Code Here

  }
 
  private void sendInstallStarted(int numFilesToUpdate)
  {
    logInfo("Install started");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.INSTALL_STARTED);
    evt.setNumFilesToUpdate(numFilesToUpdate);
    sendEvent(evt);
  }
View Full Code Here

  }

  private void sendFileInstallStarted(String artifactName)
  {
    logInfo("Install started for file: " + artifactName);
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.FILE_INSTALL_STARTED);
    evt.setArtifactName(artifactName);
    sendEvent(evt);
  }
View Full Code Here

  }

  private void sendFileInstallComplete(String artifactName)
  {
    logInfo("Install complete for file: " + artifactName);
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.FILE_INSTALL_COMPLETE);
    evt.setArtifactName(artifactName);
    sendEvent(evt);
  }
View Full Code Here

  }

  private void sendInstallComplete()
  {
    logInfo("Install completed");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.INSTALL_COMPLETE);
    sendEvent(evt);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.update.gui.installer.event.InstallStatusEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.