Package org.openstreetmap.josm.gui.preferences.plugin

Examples of org.openstreetmap.josm.gui.preferences.plugin.PluginPreference$UpdateSelectedPluginsAction


     */
    public void savePreferences() {
        // create a task for downloading plugins if the user has activated, yet not downloaded,
        // new plugins
        //
        final PluginPreference preference = getPluginPreference();
        final List<PluginInformation> toDownload = preference.getPluginsScheduledForUpdateOrDownload();
        final PluginDownloadTask task;
        if (toDownload != null && ! toDownload.isEmpty()) {
            task = new PluginDownloadTask(this, toDownload, tr("Download plugins"));
        } else {
            task = null;
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.preferences.plugin.PluginPreference$UpdateSelectedPluginsAction

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.