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

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


  }

  private void sendInitChangelistStarted(int numFilesToBackup)
  {
    logInfo("Changelist initialization started");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.INIT_CHANGELIST_STARTED);
    evt.setNumFilesToUpdate(numFilesToBackup);
    sendEvent(evt);
  }
View Full Code Here


  }

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

  }

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

  }

  private void sendInitChangelistComplete()
  {
    logInfo("Changelist initialization complete");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.INIT_CHANGELIST_COMPLETE);
    sendEvent(evt);
 
View Full Code Here

 
 
  private void sendBackupStarted(int numFilesToBackup)
  {
    logInfo("Backup started");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.BACKUP_STARTED);
    evt.setNumFilesToUpdate(numFilesToBackup);
    sendEvent(evt);
  }
View Full Code Here

  }

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

  }

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

  }

  private void sendBackupComplete()
  {
    logInfo("Backup complete");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.BACKUP_COMPLETE);
    sendEvent(evt);
  }
View Full Code Here

 
  private void sendRemoveStarted(int numFilesToRemove)
  {
    logInfo("Remove started");
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.REMOVE_STARTED);
    evt.setNumFilesToUpdate(numFilesToRemove);
    sendEvent(evt);
  }
View Full Code Here

  }

  private void sendFileRemoveStarted(String artifactName)
  {
    logInfo("Remove started for file: " + artifactName);
    InstallStatusEvent evt = installStatusEventFactory.create(InstallEventType.FILE_REMOVE_STARTED);
    evt.setArtifactName(artifactName);
    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.