Changeset 19615 in josm for trunk/src


Ignore:
Timestamp:
2026-08-12T08:28:28+02:00 (6 days ago)
Author:
stoecker
Message:

document changed functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java

    r19592 r19615  
    469469     * Returns the currently selected auto filters, if any.
    470470     * @return the currently selected auto filters. Can be empty.
     471     * @since 19592
    471472     */
    472473    public synchronized List<AutoFilter> getCurrentAutoFilters() {
     
    477478     * Returns a combination of all {@link #getCurrentAutoFilters()}, if any.
    478479     * @return a single combined filter, or null
     480     * @since 19592
    479481     */
    480482    public Filter getCurrentCombinedFilter() {
     
    500502    }
    501503
     504    /**
     505     * Adds another auto filter to current list
     506     * @param autoFilter the filter to add to current list
     507     * @since 19592
     508     */
    502509    public synchronized void addCurrentAutoFilter(AutoFilter autoFilter) {
    503510        if (!currentAutoFilters.contains(autoFilter)) {
     
    507514    }
    508515
     516    /**
     517     * Remove a current auto filter
     518     * @param autoFilter the filter to remove from current list
     519     * @since 19592
     520     */
    509521    public synchronized void removeCurrentAutoFilter(AutoFilter autoFilter) {
    510522        if (currentAutoFilters.contains(autoFilter)) {
Note: See TracChangeset for help on using the changeset viewer.