source: josm/src/org/openstreetmap/josm/actions/WmsServerAction.java@ 104

Last change on this file since 104 was 104, checked in by imi, 19 years ago
  • started i18n
  • started "download incomplete ways" action
  • added straight line selection mode
File size: 594 bytes
Line 
1package org.openstreetmap.josm.actions;
2
3import static org.openstreetmap.josm.tools.I18n.tr;
4
5import java.awt.event.ActionEvent;
6import java.awt.event.KeyEvent;
7
8import javax.swing.JOptionPane;
9
10import org.openstreetmap.josm.Main;
11
12public class WmsServerAction extends JosmAction {
13
14 public WmsServerAction() {
15 super(tr("Show background"), "wmsserver", tr("Download and show landsat background images."), KeyEvent.VK_B);
16 }
17
18 public void actionPerformed(ActionEvent e) {
19 JOptionPane.showMessageDialog(Main.parent, tr("Not implemented yet."));
20 }
21}
Note: See TracBrowser for help on using the repository browser.