Changeset 34076 in osm for applications/editors/josm/plugins/imagery-xml-bounds/src
- Timestamp:
- 2018-02-20T21:01:27+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/imagery-xml-bounds/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
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 intgetNumDataLayers() {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 getFirstDataLayer() { 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.