Skip to content

Commit

Permalink
'#2163 adds comments on some interface methods definitions to explain
Browse files Browse the repository at this point in the history
their difference.
  • Loading branch information
patrickdalla committed May 28, 2024
1 parent 087ea23 commit 55429bb
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,18 @@ public interface IFilterer extends ClearFilterListener, ActionListenerControl {

List<IFilter> getDefinedFilters();

/**
* Informs if there is at least one filter defined by the filterer
*
* @return
*/
public boolean hasFilters();

/**
* Informs if the defined filters inside the filterer are to be applied (used)
*
* @return
*/
public boolean hasFiltersApplied();

default public String getFilterName() {
Expand Down

0 comments on commit 55429bb

Please sign in to comment.