Changeset 30342 in osm for applications/editors/josm/plugins/imagery-xml-bounds/src
- Timestamp:
- 2014-03-24T17:04:25+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/ImageryXmlBoundsPlugin.java
r29461 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds; 17 3 … … 83 69 } 84 70 85 /* (non-Javadoc)86 * @see org.openstreetmap.josm.plugins.Plugin#getPreferenceSetting()87 */88 71 @Override 89 72 public PreferenceSetting getPreferenceSetting() { … … 91 74 } 92 75 93 /* (non-Javadoc)94 * @see org.openstreetmap.josm.plugins.Plugin#mapFrameInitialized(org.openstreetmap.josm.gui.MapFrame, org.openstreetmap.josm.gui.MapFrame)95 */96 76 @Override 97 77 public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/XmlBoundsConstants.java
r27015 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds; 17 3 … … 43 29 * XML file location. 44 30 */ 45 public static final String XML_LOCATION = "http ://josm.openstreetmap.de/maps";31 public static final String XML_LOCATION = "https?://josm.openstreetmap.de/maps"; 46 32 47 33 /** -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/XmlBoundsLayer.java
r27015 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds; 17 3 … … 44 30 public class XmlBoundsLayer extends OsmDataLayer implements LayerChangeListener, XmlBoundsConstants { 45 31 46 /* (non-Javadoc)47 * @see org.openstreetmap.josm.gui.layer.OsmDataLayer#getMenuEntries()48 */49 32 @Override 50 33 public Action[] getMenuEntries() { … … 89 72 } 90 73 91 /* (non-Javadoc)92 * @see org.openstreetmap.josm.gui.layer.OsmDataLayer#isMergable(org.openstreetmap.josm.gui.layer.Layer)93 */94 74 @Override 95 75 public boolean isMergable(Layer other) { … … 97 77 } 98 78 99 /* (non-Javadoc)100 * @see org.openstreetmap.josm.gui.layer.OsmDataLayer#getIcon()101 */102 79 @Override 103 80 public Icon getIcon() { … … 105 82 } 106 83 107 /* (non-Javadoc)108 * @see org.openstreetmap.josm.gui.layer.OsmDataLayer#requiresUploadToServer()109 */110 84 @Override 111 85 public boolean requiresUploadToServer() { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/XmlBoundsPreferenceSetting.java
r29500 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/BoundsLayerSaveAction.java
r27921 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/BoundsLayerSaveAsAction.java
r28657 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 … … 57 43 } 58 44 59 /* (non-Javadoc)60 * @see org.openstreetmap.josm.gui.layer.Layer.LayerSaveAsAction#actionPerformed(java.awt.event.ActionEvent)61 */62 45 @Override 63 46 public void actionPerformed(ActionEvent e) { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/ComputeBoundsAction.java
r27013 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/EditEntriesAction.java
r27863 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/ShowBoundsAction.java
r29461 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/ShowBoundsSelectionAction.java
r27013 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java
r29710 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions.downloadtask; 17 3 … … 67 53 } 68 54 69 /* (non-Javadoc)70 * @see org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask.DownloadTask#getEditLayer()71 */72 55 @Override 73 56 protected OsmDataLayer getEditLayer() { … … 76 59 } 77 60 78 /* (non-Javadoc)79 * @see org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask.DownloadTask#getNumDataLayers()80 */81 61 @Override 82 62 protected int getNumDataLayers() { … … 91 71 } 92 72 93 /* (non-Javadoc)94 * @see org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask.DownloadTask#getFirstDataLayer()95 */96 73 @Override 97 74 protected OsmDataLayer getFirstDataLayer() { … … 104 81 } 105 82 106 /* (non-Javadoc)107 * @see org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask.DownloadTask#createNewLayer()108 */109 83 @Override 110 84 protected OsmDataLayer createNewLayer() { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/data/XmlBoundsConverter.java
r30203 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.data; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/JosmServerLocationReader.java
r26896 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.io; 17 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/ValidatingImageryReader.java
r26896 r30342 1 /** 2 * 3 */ 1 // License: GPL. For details, see LICENSE file. 4 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.io; 5 3 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/XmlBoundsExporter.java
r26896 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.io; 17 3 … … 39 25 } 40 26 41 /* (non-Javadoc)42 * @see org.openstreetmap.josm.io.FileExporter#exportData(java.io.File, org.openstreetmap.josm.gui.layer.Layer)43 */44 27 @Override 45 28 public void exportData(File file, Layer layer) throws IOException { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/XmlBoundsImporter.java
r27015 r30342 1 // JOSM Imagery XML Bounds plugin. 2 // Copyright (C) 2011 Don-vip 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 1 // License: GPL. For details, see LICENSE file. 16 2 package org.openstreetmap.josm.plugins.imageryxmlbounds.io; 17 3 … … 102 88 } 103 89 104 /* (non-Javadoc)105 * @see org.openstreetmap.josm.io.FileImporter#importData(java.io.File, org.openstreetmap.josm.gui.progress.ProgressMonitor)106 */107 90 @Override 108 91 public void importData(final File file, ProgressMonitor progressMonitor) … … 116 99 } 117 100 118 /* (non-Javadoc)119 * @see org.openstreetmap.josm.io.FileImporter#importData(java.util.List, org.openstreetmap.josm.gui.progress.ProgressMonitor)120 */121 101 @Override 122 102 public void importData(List<File> files, ProgressMonitor progressMonitor)
Note:
See TracChangeset
for help on using the changeset viewer.