Changeset 35437 in osm
- Timestamp:
- 2020-05-10T11:54:18+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/imagery_cachexport
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_cachexport/build.xml
r34645 r35437 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="1 4140"/>7 <property name="plugin.main.version" value="16398"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/imagery_cachexport/src/org/openstreetmap/josm/plugins/imagery_cachexport/AbstractImageryCacheExportAction.java
r34645 r35437 20 20 import javax.swing.JOptionPane; 21 21 22 import org.apache.commons.jcs.access.CacheAccess; 22 import org.apache.commons.jcs3.access.CacheAccess; 23 23 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 24 24 import org.openstreetmap.josm.gui.MainApplication; -
applications/editors/josm/plugins/imagery_cachexport/src/org/openstreetmap/josm/plugins/imagery_cachexport/ImageryTileExportDialog.java
r34645 r35437 15 15 import javax.swing.event.DocumentListener; 16 16 17 import org.apache.commons.jcs.access.CacheAccess; 17 import org.apache.commons.jcs3.access.CacheAccess; 18 18 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 19 19 import org.openstreetmap.josm.gui.ExtendedDialog; -
applications/editors/josm/plugins/imagery_cachexport/src/org/openstreetmap/josm/plugins/imagery_cachexport/TMSImageryCacheExportAction.java
r33073 r35437 1 1 package org.openstreetmap.josm.plugins.imagery_cachexport; 2 2 3 import org.apache.commons.jcs.access.CacheAccess; 3 import org.apache.commons.jcs3.access.CacheAccess; 4 4 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 5 5 import org.openstreetmap.josm.gui.layer.TMSLayer; -
applications/editors/josm/plugins/imagery_cachexport/src/org/openstreetmap/josm/plugins/imagery_cachexport/WMSImageryCacheExportAction.java
r33073 r35437 1 1 package org.openstreetmap.josm.plugins.imagery_cachexport; 2 2 3 import org.apache.commons.jcs.access.CacheAccess; 3 import org.apache.commons.jcs3.access.CacheAccess; 4 4 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 5 5 import org.openstreetmap.josm.gui.layer.WMSLayer; -
applications/editors/josm/plugins/imagery_cachexport/src/org/openstreetmap/josm/plugins/imagery_cachexport/WMTSImageryCacheExportAction.java
r33073 r35437 1 1 package org.openstreetmap.josm.plugins.imagery_cachexport; 2 2 3 import org.apache.commons.jcs.access.CacheAccess; 3 import org.apache.commons.jcs3.access.CacheAccess; 4 4 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 5 5 import org.openstreetmap.josm.gui.layer.WMTSLayer;
Note:
See TracChangeset
for help on using the changeset viewer.