Changeset 35601 in osm for applications/editors/josm/plugins/MicrosoftStreetside
- Timestamp:
- 2020-10-18T19:30:35+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/MicrosoftStreetside
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside
- Property svn:ignore
-
old new 11 11 checkstyle-josm-MicrosoftStreetside.xml 12 12 spotbugs-josm-MicrosoftStreetside.xml 13 bintest
-
- Property svn:ignore
-
applications/editors/josm/plugins/MicrosoftStreetside/.classpath
r34428 r35601 8 8 </classpathentry> 9 9 <classpathentry kind="src" path="config"/> 10 <classpathentry kind="src" output="bin /test" path="test/unit">10 <classpathentry kind="src" output="bintest" path="test/unit"> 11 11 <attributes> 12 <attribute name="test" value="true"/> 12 13 <attribute name="gradle_scope" value="test"/> 13 14 <attribute name="gradle_used_by_scope" value="test"/> … … 20 21 </attributes> 21 22 </classpathentry> 22 <classpathentry kind="src" output="bin /test" path="test/data">23 <classpathentry kind="src" output="bintest" path="test/data"> 23 24 <attributes> 25 <attribute name="test" value="true"/> 24 26 <attribute name="gradle_scope" value="test"/> 25 27 <attribute name="gradle_used_by_scope" value="test"/> … … 28 30 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/> 29 31 <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/> 32 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 33 <classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=JOSM-MicrosoftStreetside&ivyXmlPath=ivy.xml&confs=*"/> 34 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-javafx"/> 35 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-commons"/> 36 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-apache-http"/> 37 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-utilsplugin2"/> 30 38 <classpathentry kind="output" path="bin/default"/> 31 39 </classpath> -
applications/editors/josm/plugins/MicrosoftStreetside/.project
r34577 r35601 32 32 <nature>ch.acanda.eclipse.pmd.builder.PMDNature</nature> 33 33 <nature>org.eclipse.buildship.core.gradleprojectnature</nature> 34 <nature>org.apache.ivyde.eclipse.ivynature</nature> 34 35 </natures> 35 36 </projectDescription> -
applications/editors/josm/plugins/MicrosoftStreetside/gradle.properties
r34772 r35601 8 8 # Minimum required JOSM version to run this plugin, choose the lowest version possible that is compatible. 9 9 # You can check if the plugin compiles against this version by executing `./gradlew minJosmVersionClasses`. 10 plugin.main.version=1 446010 plugin.main.version=16548 11 11 #plugin.version= 12 12 # Version of JOSM against which the plugin is compiled 13 13 # Please check, if the specified version is available for download from https://josm.openstreetmap.de/download/ . 14 14 # If not, choose the next higher number that is available, or the gradle build will break. 15 plugin.compile.version=1 446015 plugin.compile.version=17084 16 16 plugin.requires=apache-commons;apache-http;utilsplugin2;javafx 17 17 -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/StreetsideData.java
r35466 r35601 4 4 import java.util.Arrays; 5 5 import java.util.Collection; 6 import java.util.Collections; 6 7 import java.util.List; 7 8 import java.util.Objects; … … 13 14 import org.apache.commons.jcs3.access.CacheAccess; 14 15 import org.openstreetmap.josm.data.Bounds; 16 import org.openstreetmap.josm.data.Data; 17 import org.openstreetmap.josm.data.DataSource; 15 18 import org.openstreetmap.josm.data.cache.BufferedImageCacheEntry; 16 19 import org.openstreetmap.josm.gui.MainApplication; … … 31 34 * @see StreetsideSequence 32 35 */ 33 public class StreetsideData { 36 public class StreetsideData implements Data { 34 37 private final Set<StreetsideAbstractImage> images = ConcurrentHashMap.newKeySet(); 35 38 /** … … 412 415 } 413 416 } 417 418 @Override 419 public Collection<DataSource> getDataSources() { 420 return Collections.emptyList(); 421 } 414 422 } -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/StreetsideLayer.java
r34577 r35601 184 184 * @return The {@link StreetsideData} object that stores the database. 185 185 */ 186 @Override 186 187 public StreetsideData getData() { 187 188 return data;
Note:
See TracChangeset
for help on using the changeset viewer.