1   package com.atlassian.bonnie.search;
2   
3   public interface FilterCountingSearcher
4   {
5       int[] getFilteredCounts();
6   
7       void resetFilteredCounts();
8   }
9