Changeset 32546 in osm
- Timestamp:
- 2016-07-04T03:25:08+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/gpxfilter
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpxfilter/.project
r32286 r32546 16 16 </arguments> 17 17 </buildCommand> 18 <buildCommand> 19 <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> 20 <arguments> 21 </arguments> 22 </buildCommand> 18 23 </buildSpec> 19 24 <natures> 20 25 <nature>org.eclipse.jdt.core.javanature</nature> 26 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 21 27 </natures> 22 28 </projectDescription> -
applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java
r32467 r32546 1 // License: GPL. For details, see LICENSE file. 1 2 package gpxfilter; 2 3 … … 14 15 15 16 public AddEGpxLayerAction() { 16 super(tr("Add EGPX layer"),(String) null,tr("Add EGPX layer"),17 super(tr("Add EGPX layer"), (String) null, tr("Add EGPX layer"), 17 18 Shortcut.registerShortcut("gpxfilter:egpx", tr("Tool: {0}", tr("Add EGPX layer")), 18 19 KeyEvent.VK_X, Shortcut.ALT_SHIFT), … … 26 27 27 28 @Override 28 public void actionPerformed(ActionEvent arg0) 29 public void actionPerformed(ActionEvent arg0) { 29 30 getLayerManager().addLayer(new EGpxLayer(Main.map.mapView.getRealBounds())); 30 31 } -
applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java
r27760 r32546 1 // License: GPL. See LICENSE file for details. 2 1 // License: GPL. For details, see LICENSE file. 3 2 package gpxfilter; 4 3 … … 13 12 public EGpxLayer(final Bounds b) { 14 13 super(new GpxData(), tr("GPX Data")); 15 Thread t = new Thread(new Runnable() 16 { 14 Thread t = new Thread(new Runnable() { 17 15 @Override 18 16 public void run() { -
applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxFilterPlugin.java
r29778 r32546 1 // License: GPL. For details, see LICENSE file. 1 2 package gpxfilter; 2 3 -
applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxGrabber.java
r30738 r32546 1 // License: GPL. Copyright 2007 by Immanuel Scholz and others1 // License: GPL. For details, see LICENSE file. 2 2 package gpxfilter; 3 3 … … 41 41 * ways. 42 42 */ 43 public GpxData parseRawGps() throws IOException, SAXException,OsmTransferException { 43 public GpxData parseRawGps() throws IOException, SAXException, OsmTransferException { 44 44 String url = "trackpoints?bbox="+lon1+","+lat1+","+lon2+","+lat2+"&page="+page; 45 45 try (InputStream in = getInputStream(url, NullProgressMonitor.INSTANCE)) {
Note:
See TracChangeset
for help on using the changeset viewer.