Skip to content

Commit

Permalink
add ListFilter.getItems()
Browse files Browse the repository at this point in the history
  • Loading branch information
utsavdotpro committed Jul 11, 2021
1 parent f9eb40d commit e2ce822
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions custom/src/main/java/com/isolpro/custom/ListFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ protected void notifyFilterChanged() {
onFilterChanged.exec(filteredItems);
}

public List<T> getItems() {
return items;
}

public List<T> getFilteredItems() {
return filteredItems;
}
Expand Down

0 comments on commit e2ce822

Please sign in to comment.