- Timestamp:
- 2026-08-12T08:28:28+02:00 (6 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java
r19592 r19615 469 469 * Returns the currently selected auto filters, if any. 470 470 * @return the currently selected auto filters. Can be empty. 471 * @since 19592 471 472 */ 472 473 public synchronized List<AutoFilter> getCurrentAutoFilters() { … … 477 478 * Returns a combination of all {@link #getCurrentAutoFilters()}, if any. 478 479 * @return a single combined filter, or null 480 * @since 19592 479 481 */ 480 482 public Filter getCurrentCombinedFilter() { … … 500 502 } 501 503 504 /** 505 * Adds another auto filter to current list 506 * @param autoFilter the filter to add to current list 507 * @since 19592 508 */ 502 509 public synchronized void addCurrentAutoFilter(AutoFilter autoFilter) { 503 510 if (!currentAutoFilters.contains(autoFilter)) { … … 507 514 } 508 515 516 /** 517 * Remove a current auto filter 518 * @param autoFilter the filter to remove from current list 519 * @since 19592 520 */ 509 521 public synchronized void removeCurrentAutoFilter(AutoFilter autoFilter) { 510 522 if (currentAutoFilters.contains(autoFilter)) {
Note:
See TracChangeset
for help on using the changeset viewer.
