Package org.nasutekds.guitools.controlpanel.event

Examples of org.nasutekds.guitools.controlpanel.event.BackupCreatedEvent


   * the backup listeners that a backup has been created.
   * @param newBackup the new created backup.
   */
  public void backupCreated(BackupDescriptor newBackup)
  {
    BackupCreatedEvent ev = new BackupCreatedEvent(newBackup);
    for (BackupCreatedListener listener : backupListeners)
    {
      listener.backupCreated(ev);
    }
  }
View Full Code Here

TOP

Related Classes of org.nasutekds.guitools.controlpanel.event.BackupCreatedEvent

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.