Package com.salas.bb.updates.ui

Examples of com.salas.bb.updates.ui.NewVersionAvailableDialog


     *
     * @param aResult result of the check.
     */
    private void showNewVersionDialog(CheckResult aResult)
    {
        NewVersionAvailableDialog dialog = new NewVersionAvailableDialog(frame);
        dialog.open(aResult);

        if (!dialog.hasBeenCanceled())
        {
            UpdatesDownloader downloader = new UpdatesDownloader();
            downloader.download(dialog.getSelectedLocations());
        }
    }
View Full Code Here

TOP

Related Classes of com.salas.bb.updates.ui.NewVersionAvailableDialog

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.