Changeset 34076 in osm for applications/editors
- Timestamp:
- 2018-02-20T21:01:27+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/imagery-xml-bounds
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery-xml-bounds/build.xml
r33557 r34076 1 <?xml version="1.0" encoding="utf-8"?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <project name="imagery-xml-bounds" default="dist" basedir="."> 3 3 <!-- enter the SVN commit message --> 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 2671"/>6 <property name="plugin.main.version" value="13434"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/imagery-xml-bounds/src/net/boplicity/xmleditor/XmlEditorKit.java
r33493 r34076 21 21 /** 22 22 * @author kees 23 * @date 12-jan-200624 23 */ 25 24 public class XmlEditorKit extends StyledEditorKit { -
applications/editors/josm/plugins/imagery-xml-bounds/src/net/boplicity/xmleditor/XmlTextPane.java
r30735 r34076 24 24 import javax.swing.text.BadLocationException; 25 25 26 27 26 /** 28 27 * JTextPane implementation that can handle xml text. The IndentKeyListener … … 30 29 * 31 30 * @author kees 32 * @date 27-jan-200633 *34 31 */ 35 32 public class XmlTextPane extends JTextPane { -
applications/editors/josm/plugins/imagery-xml-bounds/src/net/boplicity/xmleditor/XmlView.java
r33276 r34076 42 42 * 43 43 * @author kees 44 * @date 13-jan-200645 *46 44 */ 47 45 public class XmlView extends PlainView { -
applications/editors/josm/plugins/imagery-xml-bounds/src/net/boplicity/xmleditor/XmlViewFactory.java
r30735 r34076 22 22 /** 23 23 * @author kees 24 * @date 13-jan-200625 *26 24 */ 27 25 public class XmlViewFactory extends Object implements ViewFactory { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java
r33830 r34076 70 70 71 71 @Override 72 protected int getNumDataLayers() {73 intcount = 0;72 protected long getNumModifiableDataLayers() { 73 long count = 0; 74 74 if (!MainApplication.isDisplayingMapView()) return 0; 75 75 for (Layer layer : MainApplication.getLayerManager().getLayers()) { … … 82 82 83 83 @Override 84 protected OsmDataLayer getFirst DataLayer() {84 protected OsmDataLayer getFirstModifiableDataLayer() { 85 85 if (!MainApplication.isDisplayingMapView()) return null; 86 86 for (Layer layer : MainApplication.getLayerManager().getLayers()) {
Note:
See TracChangeset
for help on using the changeset viewer.