Changeset 32287 in osm for applications/editors/josm/plugins/poly
- Timestamp:
- 2016-06-16T23:05:20+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/poly
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/poly/build.xml
r31926 r32287 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value=" 7248"/>7 <property name="plugin.main.version" value="10407"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/poly/src/poly/PolyPlugin.java
r28570 r32287 13 13 public class PolyPlugin extends Plugin { 14 14 15 /** 16 * Constructs a new {@code PolyPlugin}. 17 * @param info plugin information 18 */ 15 19 public PolyPlugin(PluginInformation info) { 16 20 super(info); 17 ExtensionFileFilter. importers.add(new PolyImporter());18 ExtensionFileFilter. exporters.add(new PolyExporter());21 ExtensionFileFilter.addImporter(new PolyImporter()); 22 ExtensionFileFilter.addExporter(new PolyExporter()); 19 23 Main.main.menu.openLocation.addDownloadTaskClass(DownloadPolyTask.class); 20 24 }
Note:
See TracChangeset
for help on using the changeset viewer.