source: josm/trunk/src/org/openstreetmap/josm/io/WMSLayerExporter.java@ 3718

Last change on this file since 3718 was 3715, checked in by Upliner, 13 years ago

Added imagery plugin to josm core. Imagery plugin is union of wmsplugin and slippymap plugins. It includes code by Tim Waters, Petr Dlouhý, Frederik Ramm and others. Also enables the remotecontol which was integrated in [3707].

File size: 320 bytes
Line 
1package org.openstreetmap.josm.io;
2
3import static org.openstreetmap.josm.tools.I18n.tr;
4
5import org.openstreetmap.josm.actions.ExtensionFileFilter;
6
7public class WMSLayerExporter extends FileExporter{
8
9 public WMSLayerExporter() {
10 super(new ExtensionFileFilter("wms", "wms", tr("WMS Files (*.wms)")));
11 }
12}
Note: See TracBrowser for help on using the repository browser.