Changeset 29854 in osm for applications/editors/josm/plugins/surveyor/src/at
- Timestamp:
- 2013-08-21T03:47:16+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveAction.java ¶
r27852 r29854 8 8 9 9 import java.awt.event.ActionEvent; 10 import java.awt.event.KeyEvent; 10 11 import java.text.MessageFormat; 11 12 import java.util.Date; … … 13 14 import java.util.TimerTask; 14 15 15 import javax.swing.AbstractAction;16 16 import javax.swing.AbstractButton; 17 import java.awt.event.KeyEvent;18 17 19 import at.dallermassl.josm.plugin.surveyor.action.SetWaypointAction; 18 import livegps.LiveGpsLayer; 19 20 20 import org.openstreetmap.josm.actions.JosmAction; 21 21 import org.openstreetmap.josm.tools.Shortcut; 22 23 import livegps.LiveGpsLayer;24 22 25 23 /** -
TabularUnified applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveGpsLayerTimerTask.java ¶
r19681 r29854 75 75 GpxWriter gpxWriter = new GpxWriter(out); 76 76 gpxWriter.write(gpsLayer.data); 77 gpxWriter.close(); 77 78 tmpFile.renameTo(file); 78 79 } catch (IOException ioExc) { -
TabularUnified applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetWaypointAction.java ¶
r19681 r29854 14 14 15 15 import org.openstreetmap.josm.Main; 16 import org.openstreetmap.josm.data.coor.LatLon;17 16 import org.openstreetmap.josm.data.gpx.GpxData; 18 17 import org.openstreetmap.josm.data.gpx.WayPoint; … … 53 52 */ 54 53 public void actionPerformed(GpsActionEvent event) { 55 LatLon coordinates = event.getCoordinates();56 54 //System.out.println(getClass().getSimpleName() + " KOORD: " + coordinates.lat() + ", " + coordinates.lon()); 57 55 String markerTitle = getParameters().get(0);
Note:
See TracChangeset
for help on using the changeset viewer.