Ignore:
Timestamp:
2017-06-09T21:49:40+02:00 (7 years ago)
Author:
michael2402
Message:

See #14794: Document the layer.gpx package

File:
1 edited

Legend:

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

    r11534 r12377  
    2121import org.openstreetmap.josm.tools.GBC;
    2222
     23/**
     24 * A panel that allows the user to input a date range he wants to filter the GPX data for.
     25 */
    2326public class DateFilterPanel extends JPanel {
    2427    private final DateEditorWithSlider dateFrom = new DateEditorWithSlider(tr("From"));
     
    8689    }
    8790
     91    /**
     92     * Applies the filter that was input by the user to the GPX track
     93     */
    8894    public void applyFilter() {
    8995        t.stop();
     
    114120    }
    115121
     122    /**
     123     * Sets a listener that should be called after the filter was applied
     124     * @param filterAppliedListener The listener to call
     125     */
    116126    public void setFilterAppliedListener(ActionListener filterAppliedListener) {
    117127        this.filterAppliedListener = filterAppliedListener;
Note: See TracChangeset for help on using the changeset viewer.