Changeset 29960 in osm for applications/editors/josm/plugins/ElevationProfile/src/org
- Timestamp:
- 2013-09-25T15:33:59+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/ColoredElevationLayer.java
r29921 r29960 59 59 @Override 60 60 public String getToolTipText() { 61 // TODO Auto-generated method stub62 61 return null; 63 62 } -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/DefaultElevationProfileRenderer.java
r29955 r29960 90 90 return null; 91 91 } 92 93 int z = (int) ElevationHelper.getElevation(wpt);94 92 95 93 switch (kind) { -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java
r29959 r29960 74 74 private JLabel totalTimeLabel; 75 75 private JLabel distLabel; 76 private JComboBox trackCombo;76 private JComboBox<IElevationProfile> trackCombo; 77 77 78 78 /* Listener to the elevation model */ … … 166 166 trackPanel.add(lbTrack); 167 167 168 trackCombo = new JComboBox (new TrackModel());168 trackCombo = new JComboBox<IElevationProfile>(new TrackModel()); 169 169 trackPanel.add(trackCombo); 170 170 … … 420 420 421 421 422 class TrackModel implements ComboBoxModel {422 class TrackModel implements ComboBoxModel<IElevationProfile> { 423 423 private Collection<ListDataListener> listeners; 424 424 -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileLayer.java
r29958 r29960 31 31 import org.openstreetmap.josm.gui.layer.Layer; 32 32 import org.openstreetmap.josm.plugins.elevation.ElevationHelper; 33 import org.openstreetmap.josm.plugins.elevation.IElevationModelListener;34 33 import org.openstreetmap.josm.plugins.elevation.IElevationProfile; 35 34 import org.openstreetmap.josm.plugins.elevation.gpx.ElevationWayPointKind;
Note:
See TracChangeset
for help on using the changeset viewer.