Ignore:
Timestamp:
2017-05-15T13:34:02+02:00 (7 years ago)
Author:
michael2402
Message:

GpxLayer: Javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java

    r12028 r12155  
    5050import org.openstreetmap.josm.tools.date.DateUtils;
    5151
     52/**
     53 * A layer that displays data from a Gpx file / the OSM gpx downloads.
     54 */
    5255public class GpxLayer extends Layer {
    5356
     
    5558    public GpxData data;
    5659    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     */
    5863    public boolean[] trackVisibility = new boolean[0];
    5964
     
    264269    }
    265270
     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     */
    266277    public void filterTracksByDate(Date fromDate, Date toDate, boolean showWithoutDate) {
    267278        int i = 0;
Note: See TracChangeset for help on using the changeset viewer.