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 | |
---|
1 | package org.openstreetmap.josm.actions;
|
---|
2 |
|
---|
3 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
4 |
|
---|
5 | import java.awt.event.ActionEvent;
|
---|
6 | import java.awt.event.KeyEvent;
|
---|
7 |
|
---|
8 | import javax.swing.JOptionPane;
|
---|
9 |
|
---|
10 | import org.openstreetmap.josm.Main;
|
---|
11 |
|
---|
12 | public 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.