Changeset 12155 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2017-05-15T13:34:02+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java
r12028 r12155 50 50 import org.openstreetmap.josm.tools.date.DateUtils; 51 51 52 /** 53 * A layer that displays data from a Gpx file / the OSM gpx downloads. 54 */ 52 55 public class GpxLayer extends Layer { 53 56 … … 55 58 public GpxData data; 56 59 private final boolean isLocalFile; 57 // used by ChooseTrackVisibilityAction to determine which tracks to show/hide 60 /** 61 * used by {@link ChooseTrackVisibilityAction} to determine which tracks to show/hide 62 */ 58 63 public boolean[] trackVisibility = new boolean[0]; 59 64 … … 264 269 } 265 270 271 /** 272 * Shows/hides all tracks of a given date range by setting them to visible/invisible. 273 * @param fromDate The min date 274 * @param toDate The max date 275 * @param showWithoutDate Include tracks that don't have any date set.. 276 */ 266 277 public void filterTracksByDate(Date fromDate, Date toDate, boolean showWithoutDate) { 267 278 int i = 0;
Note:
See TracChangeset
for help on using the changeset viewer.