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

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 
1package cadastre_fr;
2
3import static org.openstreetmap.josm.tools.I18n.tr;
4
5import java.awt.event.ActionEvent;
6
7import org.openstreetmap.josm.actions.JosmAction;
8
9public 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.