Changeset 29922 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePlugin.java
- Timestamp:
- 2013-09-10T21:04:07+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePlugin.java
r29829 r29922 5 5 import static org.openstreetmap.josm.tools.I18n.marktr; 6 6 import static org.openstreetmap.josm.tools.I18n.tr; 7 import static org.openstreetmap.josm.io.session.SessionWriter.registerSessionLayerExporter; 8 import static org.openstreetmap.josm.io.session.SessionReader.registerSessionLayerImporter; 7 9 8 10 import java.awt.event.ActionEvent; … … 138 140 * - workaround on address help tool when switching to full screen 139 141 * - improvement when clicking on existing node address street in mode relation 140 * - option to simplify raster images in 2 bits colors (like images served in the past). 142 * - option to simplify raster images in 2 bits colors (like images served in the past). 143 * 2.6 10-Sep-2013 - add JOSM "sessions" feature support (list of layers stored in a file) 141 144 */ 142 145 public class CadastrePlugin extends Plugin { … … 208 211 209 212 UploadAction.registerUploadHook(new CheckSourceUploadHook()); 213 214 registerSessionLayerExporter(WMSLayer.class , CadastreSessionExporter.class); 215 registerSessionLayerImporter("cadastre-fr", CadastreSessionImporter.class); 210 216 211 217 }
Note:
See TracChangeset
for help on using the changeset viewer.