Package com.santiagolizardo.beobachter.gui.util

Examples of com.santiagolizardo.beobachter.gui.util.UpdateManager


        Desktop.getDesktop().browse(uri);
      } catch (URISyntaxException | IOException ex) {
        logger.warning(ex.getMessage());
      }
    } else if (checkForUpdatesMenuItem == ev.getSource()) {
      UpdateManager updateManager = new UpdateManager(mainWindow);
      updateManager.checkForUpdate();
    } else if (aboutThisAppMenuItem == ev.getSource()) {
      AboutDialog aboutDialog = new AboutDialog(mainWindow);
      aboutDialog.setVisible(true);
    }
  }
View Full Code Here

TOP

Related Classes of com.santiagolizardo.beobachter.gui.util.UpdateManager

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.