Exemplo n.º 1
0
 protected void notifyChanged(Filter filter) {
   if (!pushedFilter) {
     filterStack.pushFilter(filter);
     pushedFilter = true;
   }
   if (pushedFilter && !disableFilterOutput) {
     outputFilter();
   }
 }
Exemplo n.º 2
0
 protected void outputFilter() {
   // Notify the stack to execute the changed top filter and output the results.
   lastFilterChangedCallback = new FilterChangedCallback();
   filterStack.topFilterChanged(lastFilterChangedCallback);
 }