Changeset 12377 in josm for trunk/src/org
- Timestamp:
- 2017-06-09T21:49:40+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/layer/gpx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/gpx/CustomizeDrawingAction.java
r9576 r12377 27 27 import org.openstreetmap.josm.tools.ImageProvider; 28 28 29 /** 30 * An action that is displayed in the popup menu for the layer to change the drawing of the GPX layer 31 */ 29 32 public class CustomizeDrawingAction extends AbstractAction implements LayerAction, MultiLayerAction { 30 33 private transient List<Layer> layers; 31 34 35 /** 36 * Create a new {@link CustomizeDrawingAction} 37 * @param l The layers that should be customized 38 */ 32 39 public CustomizeDrawingAction(List<Layer> l) { 33 40 this(); … … 35 42 } 36 43 44 /** 45 * Create a new {@link CustomizeDrawingAction} 46 * @param l The layer that should be customized 47 */ 37 48 public CustomizeDrawingAction(Layer l) { 38 49 this(); -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/DateFilterPanel.java
r11534 r12377 21 21 import org.openstreetmap.josm.tools.GBC; 22 22 23 /** 24 * A panel that allows the user to input a date range he wants to filter the GPX data for. 25 */ 23 26 public class DateFilterPanel extends JPanel { 24 27 private final DateEditorWithSlider dateFrom = new DateEditorWithSlider(tr("From")); … … 86 89 } 87 90 91 /** 92 * Applies the filter that was input by the user to the GPX track 93 */ 88 94 public void applyFilter() { 89 95 t.stop(); … … 114 120 } 115 121 122 /** 123 * Sets a listener that should be called after the filter was applied 124 * @param filterAppliedListener The listener to call 125 */ 116 126 public void setFilterAppliedListener(ActionListener filterAppliedListener) { 117 127 this.filterAppliedListener = filterAppliedListener; -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/ImportImagesAction.java
r11848 r12377 24 24 import org.openstreetmap.josm.tools.Utils; 25 25 26 /** 27 * An aciton that imports images along a GPX path 28 */ 26 29 public class ImportImagesAction extends AbstractAction { 27 30 private final transient GpxLayer layer; 28 31 32 /** 33 * Create a new {@link ImportImagesAction} 34 * @param layer The layer this action should be for 35 */ 29 36 public ImportImagesAction(final GpxLayer layer) { 30 37 super(tr("Import images"), ImageProvider.get("dialogs/geoimage")); -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/MarkersFromNamedPointsAction.java
r12156 r12377 15 15 import org.openstreetmap.josm.tools.ImageProvider; 16 16 17 /** 18 * An action that converts the named points to a new marker layer 19 */ 17 20 public class MarkersFromNamedPointsAction extends AbstractAction { 18 21 private final transient GpxLayer layer; 19 22 23 /** 24 * Construct a new {@link MarkersFromNamedPointsAction} 25 * @param layer The layer this action is for 26 */ 20 27 public MarkersFromNamedPointsAction(final GpxLayer layer) { 21 28 super(tr("Markers From Named Points"), ImageProvider.get("addmarkers"));
Note:
See TracChangeset
for help on using the changeset viewer.