source: osm/applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionResetCookie.java@ 29922

Last change on this file since 29922 was 25045, checked in by pieren, 14 years ago

Move the grabber single instance from CadastrePlugin singleton to each WMSLayer instance to allow several municipalities grabbing in parallel.

  • Property svn:eol-style set to native
File size: 671 bytes
Line 
1// License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others
2package cadastre_fr;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.ActionEvent;
7
8import org.openstreetmap.josm.actions.JosmAction;
9
10public class MenuActionResetCookie extends JosmAction {
11
12 /**
13 *
14 */
15 private static final long serialVersionUID = 1L;
16
17 public MenuActionResetCookie() {
18 super(tr("Reset cookie"), "cadastre_small", tr("Get a new cookie (session timeout)"), null, false);
19 }
20
21 public void actionPerformed(ActionEvent e) {
22 //CadastrePlugin.cadastreGrabber.getWmsInterface().resetCookie();
23 }
24}
Note: See TracBrowser for help on using the repository browser.