Last change
on this file since 17707 was 15961, checked in by stoecker, 16 years ago |
fix build issues
|
-
Property svn:eol-style
set to
native
|
File size:
577 bytes
|
Line | |
---|
1 | package cadastre_fr;
|
---|
2 |
|
---|
3 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
4 |
|
---|
5 | import java.awt.event.ActionEvent;
|
---|
6 |
|
---|
7 | import org.openstreetmap.josm.actions.JosmAction;
|
---|
8 |
|
---|
9 | public class MenuActionResetCookie extends JosmAction {
|
---|
10 |
|
---|
11 | /**
|
---|
12 | *
|
---|
13 | */
|
---|
14 | private static final long serialVersionUID = 1L;
|
---|
15 |
|
---|
16 | public MenuActionResetCookie() {
|
---|
17 | super(tr("Reset cookie"), "cadastre_small", tr("Get a new cookie (session timeout)"), null, false);
|
---|
18 | }
|
---|
19 |
|
---|
20 | public void actionPerformed(ActionEvent e) {
|
---|
21 | CadastrePlugin.cadastreGrabber.getWmsInterface().resetCookie();
|
---|
22 | }
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.