Ignore:
Timestamp:
2009-08-30T19:07:24+02:00 (15 years ago)
Author:
Gubaer
Message:

removed OptionPaneUtil
cleanup of deprecated Layer API
cleanup of deprecated APIs in OsmPrimitive and Way
cleanup of imports

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloader.java

    r1860 r2017  
    2828import org.openstreetmap.josm.actions.AboutAction;
    2929import org.openstreetmap.josm.gui.ExtendedDialog;
    30 import org.openstreetmap.josm.gui.OptionPaneUtil;
    3130import org.openstreetmap.josm.gui.PleaseWaitRunnable;
    3231import org.xml.sax.SAXException;
     
    5150        @Override protected void finish() {
    5251            if (errors.length() > 0) {
    53                 OptionPaneUtil.showMessageDialog(
     52                JOptionPane.showMessageDialog(
    5453                        Main.parent,
    5554                        tr("There were problems with the following plugins:\n\n {0}",errors),
     
    5857                );
    5958            } else {
    60                 OptionPaneUtil.showMessageDialog(
     59                JOptionPane.showMessageDialog(
    6160                        Main.parent,
    6261                        trn("{0} Plugin successfully downloaded. Please restart JOSM.", "{0} Plugins successfully downloaded. Please restart JOSM.", count, count),
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r1860 r2017  
    3434import org.openstreetmap.josm.gui.ExtendedDialog;
    3535import org.openstreetmap.josm.gui.MapFrame;
    36 import org.openstreetmap.josm.gui.OptionPaneUtil;
    3736import org.openstreetmap.josm.gui.download.DownloadSelection;
    3837import org.openstreetmap.josm.gui.preferences.PreferenceSettingFactory;
     
    6766                plugins.remove(p);
    6867                Main.pref.removeFromCollection("plugins", p);
    69                 OptionPaneUtil.showMessageDialog(
     68                JOptionPane.showMessageDialog(
    7069                        Main.parent,
    7170                        tr("Loading of {0} plugin was requested. This plugin is no longer required.", p),
     
    8786                }
    8887                if (info.mainversion > AboutAction.getVersionNumber()) {
    89                     OptionPaneUtil.showMessageDialog(
     88                    JOptionPane.showMessageDialog(
    9089                            Main.parent,
    9190                            tr("Plugin {0} requires JOSM update to version {1}.", pluginName,
     
    106105                    if(warn != null)
    107106                    {
    108                         OptionPaneUtil.showMessageDialog(Main.parent,
     107                        JOptionPane.showMessageDialog(Main.parent,
    109108                                tr("Plugin {0} is required by plugin {1} but was not found.",
    110109                                        warn, pluginName),
     
    120119                p.get(info.stage).add(info);
    121120            } else if(early) {
    122                 OptionPaneUtil.showMessageDialog(
     121                JOptionPane.showMessageDialog(
    123122                        Main.parent,
    124123                        tr("Plugin not found: {0}.", pluginName),
     
    137136                Main.pref.put("pluginmanager.lastupdate",Long.toString(tim));
    138137            } else if (d > maxTime) {
    139                 OptionPaneUtil.showMessageDialog(Main.parent,
     138                JOptionPane.showMessageDialog(Main.parent,
    140139                        "<html>" +
    141140                        tr("Last plugin update more than {0} days ago.", d) +
     
    217216    {
    218217        if (!PluginDownloader.moveUpdatedPlugins()) {
    219             OptionPaneUtil.showMessageDialog(
     218            JOptionPane.showMessageDialog(
    220219                    Main.parent,
    221220                    tr("Activating the updated plugins failed. Check if JOSM has the permission to overwrite the existing ones."),
     
    297296                    while (plugins.remove(plugin.info.name)) {}
    298297                    Main.pref.putCollection("plugins", plugins);
    299                     OptionPaneUtil.showMessageDialog(Main.parent,
     298                    JOptionPane.showMessageDialog(Main.parent,
    300299                            tr("The plugin has been removed from the configuration. Please restart JOSM to unload the plugin."),
    301300                            tr("Information"),
    302301                            JOptionPane.INFORMATION_MESSAGE);
    303302                } else {
    304                     OptionPaneUtil.showMessageDialog(
     303                    JOptionPane.showMessageDialog(
    305304                            Main.parent,
    306305                            tr("The plugin could not be removed. Probably it was already disabled"),
     
    345344                    a.setEditable(false);
    346345                    a.setText(b.toString());
    347                     OptionPaneUtil.showMessageDialog(
     346                    JOptionPane.showMessageDialog(
    348347                            Main.parent,
    349348                            new JScrollPane(a),
  • trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java

    r1860 r2017  
    3838import org.openstreetmap.josm.Main;
    3939import org.openstreetmap.josm.gui.ExtendedDialog;
    40 import org.openstreetmap.josm.gui.OptionPaneUtil;
    4140import org.openstreetmap.josm.tools.OpenBrowser;
    4241
     
    5049        int count = PluginDownloader.downloadDescription();
    5150        if (count > 0) {
    52             OptionPaneUtil.showMessageDialog(Main.parent,
     51            JOptionPane.showMessageDialog(Main.parent,
    5352                    trn("Downloaded plugin information from {0} site",
    5453                            "Downloaded plugin information from {0} sites", count, count),
     
    5756            );
    5857        } else {
    59             OptionPaneUtil.showMessageDialog(
     58            JOptionPane.showMessageDialog(
    6059                    Main.parent,
    6160                    tr("No plugin information found."),
     
    9089        }
    9190        if (toUpdate.isEmpty()) {
    92             OptionPaneUtil.showMessageDialog(
     91            JOptionPane.showMessageDialog(
    9392                    Main.parent,
    9493                    tr("All installed plugins are up to date."),
     
    350349                        if(err > 0)
    351350                        {
    352                             OptionPaneUtil.showMessageDialog(
     351                            JOptionPane.showMessageDialog(
    353352                                    Main.parent,
    354353                                    tr("Error reading plugin information file: {0}", f.getName()),
Note: See TracChangeset for help on using the changeset viewer.