|
Last change
on this file since 14120 was 13497, checked in by skela, 17 years ago |
|
applications/editors/josm: Set svn:eol-style native on all *.java files
in plugins. Normalize the eol-style in
plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/StringEnumConfigurer.java.
|
-
Property svn:eol-style
set to
native
|
|
File size:
578 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.