Uses of Interface
edu.uci.isr.yancees.filter.FilterInterface

Packages that use FilterInterface
edu.uci.isr.yancees.filter   
edu.uci.isr.yancees.filter.generic   
 

Uses of FilterInterface in edu.uci.isr.yancees.filter
 

Classes in edu.uci.isr.yancees.filter that implement FilterInterface
 class AbstractFilter
          Implements an abstract filter with the basic functionality to the methods of the FilterInterface
 class AbstractFilterManager.ResponseCollectorFilter
          This "dummy" filter only collects the event posted to it by the chain of responsibilty of filters It is used to collect the resultant event generated by the multiple filtering performed in this class.
 

Methods in edu.uci.isr.yancees.filter that return FilterInterface
 FilterInterface FilterManagerInterface.getFilterAt(int i)
           
 FilterInterface AbstractFilterManager.getFilterAt(int i)
           
 FilterInterface FilterManagerInterface.getFilterByName(java.lang.String name)
           
 FilterInterface AbstractFilterManager.getFilterByName(java.lang.String name)
           
 FilterInterface[] FilterManagerInterface.getFilters()
           
 FilterInterface[] AbstractFilterManager.getFilters()
           
 FilterInterface FilterInterface.getSuccessor()
           
 FilterInterface AbstractFilter.getSuccessor()
          list all the successors of this filters if any
 

Methods in edu.uci.isr.yancees.filter with parameters of type FilterInterface
 void FilterManagerInterface.addFilter(FilterInterface filter)
          Add a filter to the end of a list and register it under a name
 void AbstractFilterManager.addFilter(FilterInterface filter)
          Add a filter to the end of a list and register it under a name
 void FilterInterface.addSuccessor(FilterInterface filter)
          Adds a sucessor to this filter
 void AbstractFilter.addSuccessor(FilterInterface filter)
          Adds a successor to the list of filters of this filter
 void FilterManagerInterface.insertFilterAt(FilterInterface filter, int i)
          Insters a filter in the provided position in the filters stream
 void AbstractFilterManager.insertFilterAt(FilterInterface filter, int i)
          Insters a filter in the provided position in the filters stream
 

Uses of FilterInterface in edu.uci.isr.yancees.filter.generic
 

Classes in edu.uci.isr.yancees.filter.generic that implement FilterInterface
 class GenericFilter
          Implements a generic filter that only forwards the message without changing it